dom0 vp model: make vhpt size smaller to 64KB. this is a temporal change.
Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp>
#define VHPT_ENABLED 1
/* Size of the VHPT. */
-#define VHPT_SIZE_LOG2 24
+#ifdef CONFIG_XEN_IA64_DOM0_VP
+// XXX work around to avoid trigerring xenLinux software lock up detection.
+# define VHPT_SIZE_LOG2 16 // 64KB
+#else
+# define VHPT_SIZE_LOG2 24 // 16MB default
+#endif
/* Number of entries in the VHPT. The size of an entry is 4*8B == 32B */
#define VHPT_NUM_ENTRIES (1 << (VHPT_SIZE_LOG2 - 5))